home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-04.Z / 94-04 / text0149.txt < prev    next >
Encoding:
Text File  |  1994-04-30  |  6.2 KB  |  153 lines

  1. In article <lwilliam.3.000D5842@sfalib.sfasu.edu>, lwilliam@sfalib.sfasu.edu (Leigh Williams) says:
  2. >
  3. >Has anybody made Mosaic work while also using VLMs instead of NETX on 
  4. >Netware?  I had a call today from a site in Connecticut and the guy's having a 
  5. >problem with this.  I have Mosaic and the Trumpet winsock working fine here, 
  6. >but we're Netware 3.11 and NETX.EXE.  I gave him the Trumpet newsreader to 
  7. >test so we can see if the problem is between winsock and the VLMs, or between 
  8. >Mosaic and the VLM.  He can make Mosaic work fine if he doesn't load the 
  9. >Novell stuff.  Is this a known problem?
  10. >
  11. >Thanks,
  12. >Leigh Williams
  13. >Stephen F. Austin State University
  14. >Nacogdoches, TX 75962     409-568-1421
  15. >
  16. Got it to work here. However, after the update to vlm_1.1 my machine will
  17. hang when exiting windows.
  18. ------------
  19. Alan Sterger  (818) 393-5906 |alan_t_sterger@ccmail.jpl.nasa.gov
  20.     JPL           MS 264-538 |         75210.1022@compuserve.com
  21. Pasadena, CA    Loc 264-534G |               asterger@kaiwan.com
  22. Goin' like a bat out of hell down the Information Super Highway    
  23. From vikas@next.distinct.com Fri Apr  8 02:54:27 1994
  24. Received: from mail2.netcom.com by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  25.           id AA26158; Fri, 8 Apr 1994 12:55:59 -0400
  26. Received: from distinct.com by mail2.netcom.com (8.6.4/SMI-4.1/Netcom)
  27.     id JAA07106; Fri, 8 Apr 1994 09:56:48 -0700
  28. Received: by distinct.com (NX5.67c/NX3.0M)
  29.     id AA09373; Fri, 8 Apr 94 09:54:28 -0700
  30. From: Vikas Garg <vikas@next.distinct.com>
  31. Message-Id: <9404081654.AA09373@distinct.com>
  32. Subject: Re: Curious behaviour from winsock
  33. To: icode@teleport.com
  34. Date: Fri, 8 Apr 1994 09:54:27 -0700 (PDT)
  35. Cc: winsock@sunsite.unc.edu
  36. In-Reply-To: <icode.1.00175208@teleport.com> from "Mark Clouden" at Apr 8, 94 00:51:37 am
  37. X-Mailer: ELM [version 2.4 PL23]
  38. Content-Type: text
  39. Content-Length: 1963      
  40.  
  41. > I wonder how many have asked this question before, or alternatively, how many 
  42. > will tell me how obvious my problem is?
  43. > When using non blocking sockets with lingering enabled (l_onoff=1, 
  44. > l_linger!=0), I call closesocket and get WSAEWOULDBLOCK back. Now great, I 
  45. > expected that, but where is my notification message when it does close?? Or 
  46. > actually, when will it close? - because according to my network monitor app 
  47. > the socket is still connected.
  48. > I have confirmed that it is not my code - although could easily be my 
  49. > reasoning, by using WSATest (a wonderful help).
  50. > Basically I have switched to abrubt disconnectes unless someone can point out 
  51. > the err of my ways. 
  52. > I have tried this with Distinct TCP/IP and DEC Pathworks 4.1 and Pathworks 5.0 
  53. > beta.
  54. > Thanks for any help. I dont now how long I have gone without seeing that this 
  55. > was happening.
  56.  
  57. You are trying to issue a blocking call on a non blocking socket and that
  58. is why it is failing with the error code WSAEWOULDBLOCK. Unlike the connect()
  59. call this implies that the socket will not be closed (page 23 of WINSOCK 
  60. specs). 
  61.  
  62. You have two ways of closing the socket cleanly in this scenario
  63.  
  64. i) Make the socket blocking and then close it, this will ensure that the 
  65. call does not return untill the socket is properly closed.
  66.  
  67. ii) Turn linger off, leave the socket as non blocking and close it. In 
  68. this case the call will return immediately and the socket will be close
  69. sometimes in the future.
  70.  
  71. Hope this helps
  72.  
  73. Vikas 
  74.  
  75. ==============================================================
  76. Vikas Garg                     Phone : (408) 366-8933 Ex: 105
  77. Distinct Corp.                 Fax   : (408) 366-0153
  78. 12901 Saratoga Ave., Ste. 4    E-Mail: vikas@distinct.com     
  79. Saratoga, CA 95070                                          
  80. U.S.A.                                                      
  81. ==============================================================
  82. From news@bigblue.oit.unc.edu Fri Apr  8 14:42:56 1994
  83. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  84.           id AA16683; Fri, 8 Apr 1994 14:42:56 -0400
  85. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  86.           id AA28185; Fri, 8 Apr 1994 13:25:18 -0500
  87. Received: from GATEWAY by bigblue with netnews
  88.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  89. To: winsock@sunsite.unc.edu
  90. Date: Thu, 7 Apr 1994 14:26:56
  91. From: jcowall@apounix.apo.ford.com (Jeff G. Cowall)
  92. Message-Id: <jcowall.12.000E7363@apounix.apo.ford.com>
  93. Organization: Alliance Program Office, Ford Motor Company
  94. Sender: ses
  95. References: <tmunro.1.2DA44031@carleton.ca>
  96. Subject: Re: WT_WSK.EXE and Novell
  97.  
  98. In article <tmunro.1.2DA44031@carleton.ca> tmunro@carleton.ca (Tim Munro) writes:
  99. >    I'm having trouble keeping WinTrump's news files on my C: drive and NOT 
  100. on >Netware. I know there is a switch at invocation to do this, something like 
  101. >-ignore_nw. Could someone please tell me the correct switch name? Thanks.
  102.  
  103. -disable_nw
  104.  
  105. Works for me.
  106.  
  107. Park and Lock, Not Responsible...
  108. From news@bigblue.oit.unc.edu Tue Apr  8 03:36:37 1994
  109. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  110.           id AA21648; Fri, 8 Apr 1994 15:12:56 -0400
  111. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  112.           id AA15779; Fri, 8 Apr 1994 13:46:25 -0500
  113. Received: from GATEWAY by bigblue with netnews
  114.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  115. To: winsock@sunsite.unc.edu
  116. Date: 8 Apr 1994 03:36:37 GMT
  117. From: ddavis@osiris.cso.uiuc.edu (Dave Davis)
  118. Message-Id: <2o2jg5$l4t@vixen.cso.uiuc.edu>
  119. Organization: University of Illinois at Urbana
  120. Sender: ses
  121. References: <jclund.38.2DA327FF@mmm.com>
  122. Subject: MS TCP/IP Beta Expiration? [was Re: TCP/IP-32 Beta Expired]
  123.  
  124. jclund@mmm.com (John C. Lund) writes:
  125.  
  126. >When I started windows today, 4-6-94, I was informed that my newly installed 
  127. >TCP/IP Beta is expired.  According to the Docs. It should expire June 14?
  128. >I checked my system clock and it is correct.  Any ideas?
  129.  
  130. >John Lund
  131.  
  132. I just installed this program today (impressed so far!).  Does the
  133. 'expiration' lock you completely out of the TCP/IP functionality?  Simply a
  134. courtesy message/reminder?  What are the plans for the final release?  I hope
  135. this will be treated in the same way as the wfwtcp that was placed on
  136. ftp.microsoft.com a few months back.  Can anyone from Microsoft provide some
  137. guidance on this question?
  138.  
  139. Thanks,
  140.  
  141. Dave Davis
  142. ddavis@osiris.cso.uiuc.edu
  143.  
  144.